home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
msqc25t1
/
cat1.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-07
|
561b
|
30 lines
/* cat1.c: Utility program, compiled in Microsoft QuickC
Add to program list: cat.c, setargv.obj
Note: Extended dictionary flag must be set off
(Options-Make-Linker Flags)
Usage: cat1 filename.ext ...
This generates a list of files matching filename.ext
This does not concatenate files!!!!
*/
#include <stdio.h>
#include <string.h>
main ( int argc, char *argv[])
{
int i;
/* List all command line arguments (filenames) */
for ( i = 1; i < argc; i++ )
puts ( strupr( argv[i] ));
/* All done */
return(0);
}